home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 8050 < prev    next >
Encoding:
Text File  |  1996-08-05  |  653 b   |  28 lines

  1. Newsgroups: comp.lang.c
  2. Path: news.express.ca!not-for-mail
  3. From: gchan@express.ca (Gary Chan)
  4. Subject: convert a string to a float
  5. Message-ID: <317cc$02f19.2d@news.express.ca>
  6. Date: Fri, 01 Mar 1996 08:47:25 GMT
  7. X-Newsreader: WinVN 0.99.6
  8. MIME-Version: 1.0
  9. Content-Type: Text/Plain; charset=US-ASCII
  10.  
  11. I need to write this program to convert a string to a float:
  12.  
  13. Synopsis:
  14.     int Stof(char string[], float *floatPtr);
  15. Arguments:
  16.     string-string to be converted
  17.     floatPtr-point to float for converted value
  18. Returns:
  19.     YESNUM - if valid float converted
  20.     NONUM - if not converted
  21.  
  22. Leading + or - are allowed.
  23.  
  24. Please help me on this assignment!!!
  25. thank you.
  26.  
  27.  
  28.